From b8057a726d7f47b47f6c4ef97032aba93409c026 Mon Sep 17 00:00:00 2001 From: Steven Hand Date: Fri, 27 Apr 2007 14:45:06 +0100 Subject: [PATCH] Allow dynamic_min/dynamic_max to (temporarily) be out of sync; in practice we keep them identical but non-atomically. Signed-off-by: Steven Hand --- tools/python/xen/xend/XendConfig.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/python/xen/xend/XendConfig.py b/tools/python/xen/xend/XendConfig.py index daa4978eef..6ced067f7b 100644 --- a/tools/python/xen/xend/XendConfig.py +++ b/tools/python/xen/xend/XendConfig.py @@ -354,9 +354,6 @@ class XendConfig(dict): if not self["memory_static_min"] <= self["memory_static_max"]: raise XendConfigError("memory_static_min must be less " \ "than or equal to memory_static_max") - if not self["memory_dynamic_min"] <= self["memory_dynamic_max"]: - raise XendConfigError("memory_dynamic_min must be less " \ - "than or equal to memory_dynamic_max") if not self["memory_static_min"] <= self["memory_dynamic_min"]: raise XendConfigError("memory_static_min must be less " \ "than or equal to memory_dynamic_min") -- 2.30.2